home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / asm / cache.h < prev    next >
C/C++ Source or Header  |  2005-10-13  |  441b  |  20 lines

  1. /*
  2.  * include/asm-i386/cache.h
  3.  */
  4. #ifndef __ARCH_I386_CACHE_H
  5. #define __ARCH_I386_CACHE_H
  6.  
  7. #include <linux/config.h>
  8.  
  9. /* L1 cache line size */
  10. #ifndef CONFIG_X86_L1_CACHE_SHIFT
  11. #define L1_CACHE_SHIFT 7  /* 7 is given with X86_GENERIC kernel config */
  12. #else
  13. #define L1_CACHE_SHIFT    (CONFIG_X86_L1_CACHE_SHIFT)
  14. #endif
  15. #define L1_CACHE_BYTES    (1 << L1_CACHE_SHIFT)
  16.  
  17. #define L1_CACHE_SHIFT_MAX 7    /* largest L1 which this arch supports */
  18.  
  19. #endif
  20.